home *** CD-ROM | disk | FTP | other *** search
/ Utilities Professional 1-1500 / Utilities Professional 1-1500 (1994)(WPD)[!].iso / 07511000 / var0775.dms / var0775.adf / tutor5.P&C < prev   
Text File  |  1978-09-02  |  3KB  |  106 lines

  1. * Well@ we've come to the last section. Sob@ Sob....
  2. *
  3. * Remember me telling you that you could use the WAIT commands for a more
  4. * advanced purpose ?.
  5. *
  6. * After using one of the commands a counter is set with the results of the
  7. * command this can be examined and acted upon using the ' If ' command.
  8. *
  9. * Wait Key - This command as you know waits for a key to be pressed@
  10. *            The key that was pressed is held in the counter Key.
  11. * If you wanted to find out if it was a certain key@ & if it was goto a
  12. * certain position you would do something like:-
  13. *
  14. * Wait Key
  15. * If Key=q Then Goto Quit
  16. *
  17. * The Above example tests to see if it was a q that you pressed@ if it was
  18. * the program jumps to Quit
  19. *
  20. *
  21. * More.....
  22. * Wait Zone - The counter Zone will hold the number of the zone that you
  23. *             clicked upon.
  24. *
  25. * eg :-  If Zone=1 Then Goto SOMEWHERE
  26. *
  27. * You can also get the computer to wait for a certain Zone by using the
  28. * command...
  29. *
  30. * Wait Zone *** - The ' * ' being a number between 1 & 5.
  31. *
  32. * I think there's just time for one more command....
  33. *
  34. * SCROLLING      [ Load DEMOS/SCROLL for a working Example ]
  35. * ---------
  36. * Yes@ it is possible to actually scroll a zone in any direction@ depending
  37. * of course that you've set up a zone before-hand ( Remember - Open Zone ** )
  38. * Once the zone has been defined its just a simple task of using the scroll
  39. * command - which is - ' Scroll (ZONE) (LEFT@RIGHT@UP or DOWN).
  40. * eg:- ' Scroll 2 Up '@ This will move Zone 2 Up.
  41. * Easy@ it's just all to easy !!!!
  42. * You could put the scroll command within a loop so that it only scrolls
  43. * a certain number of times.
  44.  
  45. * Right !@ That's it@ That's all I'm going to say about the commands.
  46. * You've hopefully by now become quite a programmer@ Don't worry if you
  47. * didn't understand everything first time. Go through it again - OR better
  48. * still play around...( Don't forget HELP ).
  49.  
  50. Things you could do with Point & Click
  51. --------------------------------------
  52. Here are some ideas & suggestions what you could use P.&.C for :-
  53.  
  54. An Educational Program - Such as an animated story-book@ Clicking on a
  55.                          certain letter displays a picture of it...
  56.  
  57. A Presentation Program - You could put all the business pictures you have
  58.                          into the computer displaying certain pictures
  59.                          if you click on a certain part of the screen.
  60.                          Most Packages allow you to save a screen from a
  61.                          Business Package....
  62. Cont...
  63. A Adventure Game      - You could load in a screen with a picture on it
  64.                         and print a certain message if you clicked on
  65.                         a certain item on the picture....
  66.  
  67. A Slide-Show          - Why not get it to display all your favourite
  68.                         pictures.....
  69.  
  70. And So on.....
  71.  
  72. But one of the most important things that P.&.C should do is for you to
  73. have fun. Time for me to be signing off now@ HAPPY PROGRAMMING !!!.
  74.  
  75. Paul Gerfen
  76.  
  77. P.S - Don't forget to keep an eye out for P.&.C V1.1@ And if you get really
  78.       stuck@ don't forget to contact me.
  79.  
  80.  
  81.  
  82.  
  83.  
  84.  
  85.  
  86.  
  87.  
  88.  
  89.  
  90.  
  91.  
  92.  
  93.  
  94.  
  95.  
  96.  
  97.  
  98.  
  99.  
  100.  
  101.  
  102.  
  103.  
  104.  
  105.